home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / fbuilder / delphi / demos / eis.dpr < prev    next >
Text File  |  1996-09-15  |  183b  |  13 lines

  1. program Eis;
  2. uses
  3.   Forms,
  4.   EisFm in 'EISFM.PAS' {Form2},
  5.   DBFuncs in 'DBFUNCS.PAS';
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TForm2, Form2);
  11.   Application.Run;
  12. end.
  13.